StepOverRequest

data class StepOverRequest(skipList: List<LocationRange>?)

Represents request frame that can be used with Debugger#stepOver operation call.

Steps over the statement.

See also

Constructors

StepOverRequest
Link copied to clipboard
fun StepOverRequest(skipList: List<LocationRange>? = null)

Properties

skipList
Link copied to clipboard
val skipList: List<LocationRange>? = null
The skipList specifies location ranges that should be skipped on step over.

Sources

jvm source
Link copied to clipboard